home *** CD-ROM | disk | FTP | other *** search
/ PC Guide 18 / PC Guide CD-ROM (PCCD-18-12-96) (1996).iso / cd / st.bat < prev    next >
DOS Batch File  |  1995-05-05  |  477b  |  23 lines

  1. @echo off
  2. @cls
  3. @echo There are three Star Trek Preview demos:
  4. @echo                      an Interactive demo
  5. @echo                       a Rolling demo
  6. @echo                       a Continuous rolling demo                                       
  7. @echo Press the appropriate key: [I,R or C]
  8. getkey.exe 
  9. @if errorlevel==3 goto Cont
  10. @if errorlevel==2 goto Roll
  11.  
  12. stprevu demo.shi
  13. goto end
  14.  
  15. :Roll
  16. stprevu demoonce.shi
  17. goto end
  18.  
  19. :Cont
  20. stprevu democont.shi
  21.  
  22. :end
  23.